home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-08-12 | 509 b | 24 lines |
-
- /* Copyright (c) Mark J. Kilgard, 1994. */
-
- #include "../../../Glut.cf"
-
- TARGETS = smooth
-
- SRCS = glm.c gltx.c smooth.c trackball.c tb.c
-
- AllTarget($(TARGETS))
-
- NormalGlutProgramTarget(smooth,glm.o gltx.o smooth.o tb.o trackball.o)
-
- LinkFile(trackball.c, ../../examples/trackball.c)
- LinkFile(trackball.h, ../../examples/trackball.h)
-
- trackball.o: trackball.h
- tb.o: trackball.h
-
- /* some old imake configs do setup "make depend" dependencies on linked files */
- depend:: trackball.c trackball.h
-
- DependTarget()
-